/* ============= Experience & Clients Page Specific Styles ============= */

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    text-align: center;
}

.hero-section h1 {
    font-weight: 800;
    font-size: 3.2rem;
    margin-bottom: 30px;
    color: var(--accent-yellow);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
}

/* Results Section */
.results-section {
    padding: 80px 0;
    background: rgba(0, 40, 85, 0.5);
}

.result-card {
    text-align: center;
    padding: 30px 25px;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-yellow);
}

.result-icon {
    font-size: 2.7rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

.result-card h3 {
    color: var(--accent-yellow);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.result-card p {
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

/* Case Studies Section */
.case-studies-section {
    padding: 80px 0;
}

.case-study {
    padding: 30px;
    transition: all 0.3s ease;
}

.case-study:hover {
    transform: translateY(-5px);
    border-color: var(--accent-yellow);
}

.case-title {
    color: var(--accent-yellow);
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.case-tag {
    background: rgba(255, 195, 0, 0.2);
    color: var(--accent-yellow);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.case-subtitle {
    color: var(--accent-yellow);
    margin: 20px 0 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.case-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.case-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.case-list li:before {
    content: "•";
    color: var(--accent-yellow);
    font-weight: bold;
    position: absolute;
    left: 10px;
}

/* Methods Section */
.methods-section {
    padding: 80px 0;
    background: rgba(0, 40, 85, 0.5);
}

.method-card {
    text-align: center;
    padding: 30px 25px;
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-yellow);
}

.method-icon {
    font-size: 2.7rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

.method-card h3 {
    color: var(--accent-yellow);
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

.method-card p {
    line-height: 1.6;
    font-size: 1.25rem;
    margin: 0;
}

/* ============= Responsive Design ============= */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-section h1 {
        font-size: 2.3rem;
    }
    
    .results-section,
    .case-studies-section,
    .methods-section {
        padding: 60px 0;
    }
    
    .result-card,
    .method-card {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .case-title {
        font-size: 1.2rem;
    }
    
    .result-card h3,
    .method-card h3 {
        font-size: 1.2rem;
    }
}